In [ ]:
%matplotlib inline
In this investigation, we'll determine how the restoring force of a spring depends on its displacement from equilibrium.
$$ a^2 + b^2 = c^2 $$$$\sum \vec{F} = m\vec{a}$$m (g) | x (cm) |
---|---|
50 | |
100 | |
150 | |
200 | |
250 | |
300 |
In [ ]:
import matplotlib.pyplot as plt
import numpy as np
from scipy.optimize import curve_fit
#------------------------------
#Write your plot/fit code below
#------------------------------